blob: 3eeb5288947cedd612fd2c80d7401a188a357497 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<script context="module">
export const load = ({
page: {
params: { id }
}
}) => ({ props: { id } });
</script>
<script>
import { _ } from 'svelte-i18n';
import { getPost } from '$/stores/posts';
import Post from '$/components/post/post.svelte';
import ErrorBlock from '$/components/error_block/error_block.svelte';
import Loader from '$/components/loader/loader.svelte';
export let id;
$: store = getPost(id);
$: post = $store.data;
</script>
<svelte:head>
<title>{$_('post.post')}}</title>
</svelte:head>
{#if $store.loading}
<Loader />
{/if}
{#if $store.error}
<ErrorBlock message={$_('post.error.unavailable')} />
{/if}
{#if post}
<Post {post} />
{/if}
|